/* Import modern fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* New Color Variables - Modern Forest Green Theme */
:root {
  --primary-bg: #0d1f0a;
  --secondary-bg: #1a2e17;
  --accent-color: #27ae60;
  --secondary-accent: #2ecc71;
  --primary-color: #ffffff;
  --secondary-color: #e8f5e8;
  --border-color: #3d5a3c;
  --text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  --box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  --gradient-primary: linear-gradient(135deg, #1a2e17 0%, #0d1f0a 100%);
  --gradient-accent: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  --gradient-hover: linear-gradient(135deg, #81c784 0%, #66bb6a 100%);
  --card-shadow: 0 2px 12px rgba(39,174,96,0.15);
}

html {
    font-family: "Pangolin" "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
    margin: 0;
    padding: 110px 0 20px 0;
    min-width: 360px;
    background: var(--primary-bg);
    color: var(--primary-color);
    font-family: "Pangolin" "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    text-shadow: var(--text-shadow);
    font-weight: 400;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1, h2 {
    position: relative;
    margin: 0;
    padding: 0 0 5px 0;
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(39,174,96,0.4);
    letter-spacing: 0.5px;
    font-family: "Pangolin", sans-serif;
}

h1 a {
    color: var(--primary-color);
}

h1 a:active, h1 a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 12px var(--accent-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a.active {
    text-decoration: none;
    color: var(--accent-color);
    text-shadow: 0 0 8px var(--accent-color);
}

a:focus {
    outline: 1px solid var(--accent-color);
    outline-offset: 1px;
}

a:active, a:hover {
    text-decoration: none;
    outline: 0;
    color: var(--secondary-accent);
    text-shadow: 0 0 10px var(--secondary-accent);
}

img {
    border: 0;
    vertical-align: middle;
}

.show-xs {
    display: none;
}

.float-l {
    float: left;
}

.float-r {
    float: right;
}

.foot-vis {
    margin-top: 20px;
}

.align-c {
    text-align: center;
}

.col-accent {
    color: var(--accent-color) !important;
    text-shadow: 0 0 6px var(--accent-color);
}

.fw-b {
    font-weight: 600;
}

.img-bg {
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
}

.img-responsive {
    display: inline-block;
    max-width: 100%;
}

.image-picpost {
    background-color: var(--secondary-bg);
    display: block;
    line-height: 0;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
    padding-top: 146%;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: var(--card-shadow);
}

.image-picpost img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    height: 103%;
    filter: contrast(110%) brightness(95%);
    border-radius: 5px;
}

.real-img {
    position: relative;
    overflow: hidden;
}

.clearfix:before, .clearfix:after, .main-app:before, .main-app:after {
    content: " ";
    display: table;
}

.clearfix:after, .main-app:after {
    clear: both;
}

/* NEW HEADER LAYOUT - Logo left, menu center */
.page-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 15px;
    min-width: 360px;
    background: var(--gradient-primary);
    z-index: 1000;
    border-bottom: 1px solid var(--accent-color);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(8px);
    height: 100px;
}

.page-header-logo {
    width: 180px;
    height: 70px;
    filter: drop-shadow(0 0 8px rgba(39,174,96,0.3));
    object-fit: contain;
}

.page-footer-logo {
    height: 50px;
    filter: drop-shadow(0 0 6px var(--accent-color));
}

.page-header-nav {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: center;
    flex: 1;
    gap: 8px;
}

.page-header-nav li {
    float: none;
    display: inline-block;
    position: relative;
    padding: 0;
    line-height: 35px;
}

.page-header-nav li.no-pad {
    padding: 0;
}

.page-header-nav .material-icons {
    vertical-align: middle;
    color: var(--primary-color);
    text-shadow: 0 0 6px var(--accent-color);
}

.box {
    margin: 25px 0 0 0;
}

.pg-crrv-bottoms {
    text-align: center;
}

.pg-crrv-bottoms a {
    display: inline-block;
    padding: 8px 0 0 0;
    min-width: 38px;
    height: 38px;
    color: var(--primary-color);
    text-decoration: none;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    background: rgba(255,255,255,0.08);
    text-shadow: var(--text-shadow);
    box-shadow: var(--card-shadow);
    font-weight: 500;
}

.pg-crrv-bottoms a {
    padding: 8px 10px 0 10px;
    min-width: 42px;
    margin: 4px;
    border-radius: 5px;
}

.pg-crrv-bottoms a:hover, .pg-crrv-bottoms a:focus {
    background: rgba(39,174,96,0.15);
    color: var(--accent-color);
    border-color: var(--accent-color);
    text-shadow: 0 0 8px var(--accent-color);
    box-shadow: 0 0 15px rgba(39,174,96,0.3);
    transform: translateY(-1px);
}

.pg-crrv-bottoms a.active {
    background: rgba(39,174,96,0.2);
    color: var(--accent-color);
    border-color: var(--accent-color);
    text-shadow: none;
    box-shadow: 0 0 15px rgba(39,174,96,0.4);
}

.pg-crrv-bottoms a.active:hover {
    background: rgba(39,174,96,0.3);
    color: var(--accent-color);
    box-shadow: 0 0 20px rgba(39,174,96,0.5);
    transform: translateY(-1px);
}

.grid-op {
    margin: -6px 0 0 -6px;
}

.grid-op:before, .grid-op:after {
    content: " ";
    display: table;
}

.grid-op:after {
    clear: both;
}

.grid-op.grid-spacing-md-equal {
    margin: -15px 0 0 -15px;
}

.grid-op.grid-spacing-md-equal .grid-class {
    padding: 15px 0 0 15px;
}

.grid-op .grid-class {
    float: left;
    width: 100%;
    padding: 6px 0 0 6px;
}

.grid-op.grid-tn-2 .grid-class {
    width: 50%;
}

.card {
    background: var(--gradient-primary);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39,174,96,0.2);
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #2a3e27 0%, #3a4e37 100%);
}

.card .card-img {
    position: relative;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    overflow: hidden;
}

.card .card-label {
    padding: 10px;
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
    text-overflow: ellipsis;
    min-height: 60px;
    vertical-align: middle;
    color: var(--primary-color);
    text-shadow: var(--text-shadow);
    background: rgba(39,174,96,0.08);
    border-radius: 0 0 7px 7px;
    font-family: "Pangolin", sans-serif;
}

.card .card-label a {
    color: var(--primary-color);
}

.card .card-label a:hover {
    color: var(--accent-color);
    text-decoration: none;
    text-shadow: 0 0 10px var(--accent-color);
}

button {
    margin: 0;
    color: inherit;
    font-size: 14px;
    line-height: normal;
    font-family: "Pangolin", sans-serif;
}

button {
    overflow: visible;
}

button {
    text-transform: none;
}

.btn {
    height: 34px;
    padding: 6px 16px;
    border: 1px solid var(--border-color);
    background: rgba(255,255,255,0.08);
    color: var(--primary-color);
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    white-space: nowrap;
    border-radius: 5px;
    cursor: pointer;
    text-shadow: var(--text-shadow);
    box-shadow: var(--card-shadow);
    font-weight: 500;
    font-family: "Pangolin", sans-serif;
}

.btn:hover, .btn:focus {
    background: rgba(39,174,96,0.15);
    color: var(--accent-color);
    outline: 0;
    text-shadow: 0 0 8px var(--accent-color);
    box-shadow: 0 0 15px rgba(39,174,96,0.3);
    transform: translateY(-1px);
    border-color: var(--accent-color);
}

.btn.btn-cta {
    color: var(--accent-color);
    background: rgba(39,174,96,0.2);
    border-color: var(--accent-color);
    text-shadow: 0 0 6px rgba(39,174,96,0.5);
    box-shadow: 0 0 12px rgba(39,174,96,0.2);
}

.btn.btn-cta:hover {
    background: rgba(39,174,96,0.3);
    color: var(--accent-color);
    text-shadow: none;
    box-shadow: 0 0 15px rgba(39,174,96,0.4);
    transform: translateY(-1px);
}

a.btn {
    display: inline-block;
    padding: 6px 16px 0 16px;
    color: var(--primary-color);
    text-decoration: none;
}

.main-app {
    margin-right: auto;
    margin-left: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 26px;
    padding: 8px;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--accent-color);
    transition: all 0.2s ease;
    background: rgba(39,174,96,0.1);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-top: 15px;
}

.mobile-menu-toggle:hover {
    color: var(--accent-color);
    transform: scale(1.05);
    background: rgba(39,174,96,0.2);
    border-color: var(--accent-color);
}

.mobile-menu-toggle .menu-icon {
    display: block;
}

.mobile-menu-toggle .close-icon {
    display: none;
}

.mobile-menu-toggle.active .menu-icon {
    display: none;
}

.mobile-menu-toggle.active .close-icon {
    display: block;
}

/* Адаптивность */
@media(min-width: 1599px) {
    .hide-xs {
        display: none;
    }
    .show-xs {
        display: block;
    }
    .hide-sm {
        display: none;
    }
}

@media(max-width: 1024px) {
    /* Hide desktop menu on mobile */
    .page-header-nav {
        display: none;
    }
    
    .page-header-nav.mobile-active {
        display: flex;
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--gradient-primary);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid var(--accent-color);
        box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        z-index: 999;
        gap: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .page-header {
        justify-content: space-between;
        padding: 8px 15px;
        height: 90px;
    }
    
    .page-header-logo {
        width: 150px;
        height: 60px;
    }
    
    body {
        padding-top: 90px;
    }
    
    .page-header-nav.mobile-active li {
        display: block;
        text-align: center;
        margin: 8px 0;
        width: 100%;
    }
    
    .page-header-nav.mobile-active li a {
        display: block;
        width: 100%;
        padding: 12px;
        margin: 5px 0;
        background: rgba(255,255,255,0.08);
        border: 1px solid var(--border-color);
        border-radius: 6px;
    }
    
    .page-header-nav.mobile-active li a:hover {
        background: rgba(39,174,96,0.2);
        border-color: var(--accent-color);
    }
}

@media(max-width: 768px) {
    .card .card-label {
        font-size: 1.1em;
    }
    body {
        padding: 85px 0 25px 0;
        font-size: 14px;
    }
    .page-header-logo {
        width: 140px;
        height: 55px;
    }
    h1, h2 {
        font-size: 22px;
    }
    .page-header {
        height: 85px;
        padding: 6px 15px;
    }
    
    .page-header-nav.mobile-active {
        top: 85px;
    }
    
    /* Mobile footer links */
    .foot-vis a {
        margin: 0 6px;
        font-size: 14px;
    }
    
    /* Mobile category links */
    .pg-crrv-bottoms {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
        margin: 0 -3px;
    }
    
    .pg-crrv-bottoms a {
        flex: 0 0 auto;
        padding: 4px 8px !important;
        min-width: auto !important;
        height: auto !important;
        margin: 2px !important;
        font-size: 13px;
        border: none !important;
        background: rgba(255,255,255,0.08) !important;
        box-shadow: none !important;
        border-radius: 3px;
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
        transition: all 0.2s ease;
        font-weight: 400;
        color: var(--secondary-color) !important;
        text-shadow: none;
    }
    
    .pg-crrv-bottoms a.active {
        background: rgba(39,174,96,0.2) !important;
        color: var(--accent-color) !important;
        border: none !important;
        box-shadow: none !important;
        font-weight: 500;
    }
    
    .pg-crrv-bottoms a:hover,
    .pg-crrv-bottoms a:focus {
        background: rgba(39,174,96,0.15) !important;
        color: var(--accent-color) !important;
        border: none !important;
        box-shadow: none !important;
        transform: none;
        text-shadow: 0 0 4px rgba(39,174,96,0.3);
    }
    
    /* Mobile buttons */
    .btn {
        background: rgba(255,255,255,0.08);
        border: 1px solid var(--border-color);
    }
    
    .btn.btn-cta {
        background: rgba(39,174,96,0.2);
        border: 1px solid var(--accent-color);
    }
    
    .btn:hover, .btn:focus {
        background: rgba(39,174,96,0.25);
        border-color: var(--accent-color);
    }
}

@media(min-width: 768px) {
    h1, h2 {
        font-size: 34px;
    }
    .page-header {
        padding-top: 0;
    }
    .page-header-logo {
        width: 180px;
        height: 70px;
    }
    .page-header-nav li {
        line-height: 38px;
    }
    .page-footer {
        margin: 35px 0 0 0;
        padding: 0 0 35px 0;
    }
    .box {
        margin: 35px 0 0 0;
    }
    .grid-op.grid-sm-3 .grid-class {
        width: 33.33333333%;
    }
    button {
        font-size: 15px;
    }
    .btn {
        height: 36px;
        padding: 7px 18px;
        font-size: 15px;
    }
    a.btn {
        padding: 7px 18px 0 18px;
    }
    .main-app {
        width: 740px;
    }
}

@media(min-width: 1025px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .page-header-nav {
        display: flex !important;
    }
}

@media(min-width: 992px) {
    body {
        padding: 110px 0 30px 0;
        font-size: 16px;
    }
    h1, h2 {
        font-size: 36px;
    }
    .page-header-logo {
        width: 180px;
        height: 70px;
    }
    .page-header-nav li {
        padding: 0 0 0 8px;
        line-height: 40px;
    }
    .grid-op.grid-spacing-md-equal {
        margin: -20px 0 0 -20px;
    }
    .grid-op.grid-spacing-md-equal .grid-class {
        padding: 20px 0 0 20px;
    }
    .grid-op.grid-sm-3 .grid-class {
        width: 25%;
    }
    button {
        font-size: 15px;
    }
    .btn {
        height: 38px;
        padding: 8px 22px;
        font-size: 15px;
    }
    a.btn {
        padding: 8px 22px 0 22px;
    }
    .main-app {
        width: 960px;
    }
}

@media(min-width: 1200px) {
    h1 .more {
        display: block;
    }
    .page-header-nav li {
        padding: 0 0 0 12px;
    }
    .box {
        margin: 10px 0 0 0;
    }
    .main-app {
        width: 1160px;
    }
}

@media(min-width: 1600px) {
    .grid-op.grid-xl-4 .grid-class {
        width: 20%;
    }
    .main-app {
        width: 1560px;
    }
}

.pictures-page {
    position: relative;
}

.i-love-bnet-stiles-picblocks {
    -moz-column-gap: 12px;
    -webkit-column-gap: 12px;
    column-gap: 12px;
    -moz-column-count: 4;
    -webkit-column-count: 4;
    column-count: 4;
}

.i-love-bnet-stiles-picblocks-right {
    -moz-column-gap: 12px;
    -webkit-column-gap: 12px;
    column-gap: 12px;
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
}

@media (max-width:660px) {
    .i-love-bnet-stiles-picblocks {
        -moz-column-gap: 10px;
        -webkit-column-gap: 10px;
        column-gap: 10px;
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media (max-width:450px) {
    .i-love-bnet-stiles-picblocks {
        -moz-column-gap: 8px;
        -webkit-column-gap: 8px;
        column-gap: 8px;
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}

.i-love-bnet-stiles-picblocks1 {
    -moz-column-gap: 12px;
    -webkit-column-gap: 12px;
    column-gap: 12px;
    -moz-column-count: 6;
    -webkit-column-count: 6;
    column-count: 6;
}

@media (max-width:860px) {
    .i-love-bnet-stiles-picblocks1 {
        -moz-column-gap: 10px;
        -webkit-column-gap: 10px;
        column-gap: 10px;
        -moz-column-count: 4;
        -webkit-column-count: 4;
        column-count: 4;
    }
}

@media (max-width:660px) {
    .i-love-bnet-stiles-picblocks1 {
        -moz-column-gap: 8px;
        -webkit-column-gap: 8px;
        column-gap: 8px;
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}

@media (max-width:450px) {
    .i-love-bnet-stiles-picblocks1 {
        -moz-column-gap: 6px;
        -webkit-column-gap: 6px;
        column-gap: 6px;
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

.new-imgi-love-bnet-stiles-pg {
    margin: 6px;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    break-inside: avoid;
}

.itemnew {
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: all 0.2s ease;
}

.itemnew:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39,174,96,0.2);
    border-color: var(--accent-color);
}

.imgi-love-bnet-stiles-im {
    position: relative;
    margin-bottom: 10px;
}

.imgdetails {
    position: absolute;
    right: 0;
    bottom: 0;
    border-top-left-radius: 6px;
    border-bottom-right-radius: 6px;
    background: linear-gradient(135deg, rgba(39,174,96,0.85) 0%, rgba(39,174,96,0.65) 100%);
    color: var(--primary-color);
    line-height: 1.6;
    padding: 5px 10px;
    text-align: center;
    font-size: 12px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    font-weight: 600;
    font-family: "Pangolin", sans-serif;
    backdrop-filter: blur(4px);
}

.pics-list .picture-details {
    background-color: var(--secondary-bg);
}

.pictures-page {
    position: relative;
}

body {
    padding-top: 110px;
    position: relative;
    min-width: 360px;
    background: var(--primary-bg);
    color: var(--primary-color);
    font-family: "Pangolin", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    text-shadow: var(--text-shadow);
    font-weight: 400;
}

@media (max-width: 1024px) {
    body {
        padding-top: 90px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 85px;
    }
}

.i-love-bnet-stiles-box.align-c p {
    margin: 8px 0;
    font-size: 13px;
    line-height: 1.5;
}

.i-love-bnet-stiles-footer-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.i-love-bnet-stiles-footer-banner {
    width: 65px;
    height: 50px;
    object-fit: contain;
    background: rgba(255,255,255,0.06);
    padding: 6px;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
}

.i-love-bnet-stiles-footer-banner:hover {
    background: rgba(39,174,96,0.15);
    border-color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(39,174,96,0.2);
}

.i-love-bnet-stiles-footer-banners {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 1.5rem;
    justify-content: center;
}

/* NEW FOOTER STYLING */
.page-footer {
    margin: 40px 0 0 0;
    padding: 25px 0 20px 0;
    background: var(--gradient-primary);
    border-top: 1px solid var(--accent-color);
    position: relative;
}

.page-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-accent);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin: 15px 0;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 14px;
}

.footer-links a:hover {
    background: var(--gradient-accent);
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(39,174,96,0.2);
}

.footer-info {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Slider Gallery Grid Styles */
.imgi-love-bnet-stiles-slider-container {
    position: relative;
    width: 100%;
    margin: 15px 0;
}

.imgi-love-bnet-stiles-slider {
    -moz-column-gap: 12px;
    -webkit-column-gap: 12px;
    column-gap: 12px;
    -moz-column-count: 4;
    -webkit-column-count: 4;
    column-count: 4;
}

.imgi-love-bnet-stiles-slider-item {
    position: relative;
    margin-bottom: 12px;
    break-inside: avoid;
}

.image-item-imgi-love-bnet-stiles-slider {
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: all 0.2s ease;
    cursor: pointer;
}

.image-item-imgi-love-bnet-stiles-slider:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(39,174,96,0.3);
    transform: translateY(-2px);
}

.itemnew-slider {
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

@media (max-width:660px) {
    .imgi-love-bnet-stiles-slider {
        -moz-column-gap: 10px;
        -webkit-column-gap: 10px;
        column-gap: 10px;
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media (max-width:450px) {
    .imgi-love-bnet-stiles-slider {
        -moz-column-gap: 8px;
        -webkit-column-gap: 8px;
        column-gap: 8px;
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}

/* Lightbox/Slider Modal */
.imgi-love-bnet-stiles-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 2000;
    backdrop-filter: blur(8px);
}

.imgi-love-bnet-stiles-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgi-love-bnet-stiles-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.imgi-love-bnet-stiles-lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(39,174,96,0.25);
}

.imgi-love-bnet-stiles-lightbox-close {
    position: absolute;
    top: -45px;
    right: -8px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: bold;
    box-shadow: 0 3px 12px rgba(0,0,0,0.25);
}

.imgi-love-bnet-stiles-lightbox-close:hover {
    background: var(--secondary-accent);
    transform: scale(1.05);
}

.imgi-love-bnet-stiles-lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.imgi-love-bnet-stiles-lightbox-prev,
.imgi-love-bnet-stiles-lightbox-next {
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    width: 55px;
    height: 70px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin: 0 25px;
    pointer-events: all;
    box-shadow: 0 3px 15px rgba(0,0,0,0.3);
    font-weight: bold;
}

.imgi-love-bnet-stiles-lightbox-prev {
    position: absolute;
    left: -70px;
}

.imgi-love-bnet-stiles-lightbox-next {
    position: absolute;
    right: -70px;
}

.imgi-love-bnet-stiles-lightbox-prev:hover,
.imgi-love-bnet-stiles-lightbox-next:hover {
    background: var(--secondary-accent);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(39,174,96,0.4);
}

.imgi-love-bnet-stiles-lightbox-counter {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    background: rgba(0,0,0,0.6);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
}

.i-love-bnet-stiles-picblocks1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.new-imgi-love-bnet-stiles-pg {
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .i-love-bnet-stiles-picblocks1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .i-love-bnet-stiles-picblocks1 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .imgi-love-bnet-stiles-lightbox-prev,
    .imgi-love-bnet-stiles-lightbox-next {
        width: 45px;
        height: 60px;
        font-size: 20px;
        margin: 0 15px;
    }
    
    .imgi-love-bnet-stiles-lightbox-prev {
        left: -55px;
    }
    
    .imgi-love-bnet-stiles-lightbox-next {
        right: -55px;
    }
    
    .imgi-love-bnet-stiles-lightbox-close {
        top: -40px;
        right: -5px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .i-love-bnet-stiles-picblocks1 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .imgi-love-bnet-stiles-lightbox-prev,
    .imgi-love-bnet-stiles-lightbox-next {
        width: 40px;
        height: 50px;
        font-size: 18px;
        margin: 0 10px;
    }
    
    .imgi-love-bnet-stiles-lightbox-prev {
        left: -45px;
    }
    
    .imgi-love-bnet-stiles-lightbox-next {
        right: -45px;
    }
    
    .pg-crrv-bottoms a {
        font-size: 12px;
        padding: 3px 6px !important;
        margin: 1px !important;
        background: rgba(255,255,255,0.06) !important;
    }
    
    .pg-crrv-bottoms {
        gap: 4px;
        margin: 0 -2px;
    }
}