:root {
    --blue: #188aff;
    --dark-blue: #0566c9;
    --light-blue: #e0edff;
    --gray: #f8f9fa;
    --surface: #ffffff;
    --on-surface: #212121;
    --on-surface-variant: #757575;
    --border-radius: 1rem;
    --border-radius-btn: 2rem;
}

* {
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    font-size: 16px;
    background-color: var(--gray);
    color: var(--on-surface);
}

h1 {
    margin-bottom: 20px;
}

label {
    font-size: 14px;
    font-weight: normal;
}

.btn:focus,
button:focus {
    outline: none !important;
}

#content {
    min-height: 420px;
}

#alert {
    z-index: 9999;
    position: fixed;
    top: 30%;
    left: 50%;
    width: 400px;
    margin-left: -200px;
}

@media (min-width: 992px) {
    #alert {
        width: 600px;
        margin-left: -300px;
    }
}

@media (min-width: 1140px) {
    #alert {
        width: 600px;
        margin-left: -300px;
    }
}

@media (min-width: 1320px) {
    #alert {
        width: 600px;
        margin-left: -300px;
    }
}

#alert .alert {
    margin-bottom: 15px;
}

#alert .alert-primary {
    box-shadow: 0 0 0 5px rgb(var(--bs-primary-rgb), 0.1);
}

#alert .alert-secondary {
    box-shadow: 0 0 0 5px rgb(var(--bs-secondary-rgb), 0.1);
}

#alert .alert-success {
    box-shadow: 0 0 0 5px rgb(var(--bs-success-rgb), 0.1);
}

#alert .alert-warning {
    box-shadow: 0 0 0 5px rgb(var(--bs-warning-rgb), 0.1);
}

#alert .alert-danger {
    box-shadow: 0 0 0 5px rgb(var(--bs-danger-rgb), 0.1);
}

#alert .alert-info {
    box-shadow: 0 0 0 5px rgb(var(--bs-info-rgb), 0.1);
}

#alert .alert-light {
    box-shadow: 0 0 0 5px rgb(var(--bs-light-rgb), 0.1);
}

#alert .alert-dark {
    box-shadow: 0 0 0 5px rgb(var(--bs-dark-rgb), 0.1);
}

footer {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 50px;
    background-color: var(--on-surface);
    color: #ffffff;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

footer h5 {
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
}

@media (min-width: 960px) {
    .product-list .product-thumb {
        display: flex;
    }

    .product-list .product-thumb .image {
        flex-direction: column;
        margin-bottom: 0px;
    }

    .product-list .product-thumb .content {
        flex-direction: column;
        flex: 75%;
        position: relative;
    }

    .product-list .product-thumb .button {
        border-left: 1px solid #ddd;
        width: calc(100% - 15px);
        margin-left: 15px;
    }
}

.form-control:not(textarea):not(div),
.form-select {
    height: 44px;
}

.rating .fa-stack {
    width: 20px;
}

.rating .fa-star {
    color: #999;
    font-size: 15px;
}

.rating .fa-star {
    color: #FC0;
    font-size: 15px;
}

.rating .fa-star+.fa-star {
    color: #E69500;
}

/* product list */
.price {
    color: #444;
}

.price-new {
    font-size: 1.7em;
    font-weight: 600;
}

.price-old {
    color: #dc512c;
    text-decoration: line-through;
}

.price-tax {
    color: #999;
    font-size: 12px;
    display: block;
}

/* blog */
.blog-thumb {
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.blog-thumb h4 {
    font-weight: bold;
}

.blog-thumb .image {
    text-align: center;
    margin-bottom: 15px;
}

.blog-thumb .image a:hover {
    opacity: 0.8;
}

.blog-thumb .description {
    padding: 15px;
}

.product-thumb {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    margin: 0 auto;
}

.product-image {
    background: #f9f9f9;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
}

.product-title a {
    color: #000000;
    text-decoration: none;
}

.product-description {
    color: #666666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

.product-price {
    margin-bottom: 20px;
}

.price {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.price-special {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-right: 8px;
}

.price-old {
    font-size: 14px;
    color: #999999;
    text-decoration: line-through;
}

.btn-cart {
    flex: 1;
    background: var(--blue);
    color: var(--surface);
    border: none;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--bs-form-border-radius);
    height: 48px;
}

.btn-cart:hover {
    background: var(--dark-blue);
}

header {
    background: #ffffff;
    border-bottom: 2px solid #f1f1f1;
    padding: 0;
    margin-bottom: 40px;
}

.header-inner {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    min-height: 70px;
    gap: 40px;
    padding: 0 24px;
}

.logo-area {
    justify-self: start;
}

.logo-area img {
    height: 36px;
    width: auto;
    display: block;
}

.nav-area {
    justify-self: center;
}

.main-nav {
    display: flex;
    gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
    padding: 8px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.2s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--blue);
}

.actions-area {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-self: end;
}

.currency-switcher {
    display: flex;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: var(--border-radius-btn);
    overflow: hidden;
}

.currency-option {
    background: none;
    border: none;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.15s ease;
}

.currency-option.active {
    background: var(--blue);
    color: white;
}

.currency-option:hover:not(.active) {
    background: #f8fafc;
}

.action-item {
    background: var(--light-blue);
    border: 1px solid var(--light-blue);
    padding: 7px 16px;
    color: #4a5568;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: all 0.15s ease;
    border-radius: var(--border-radius-btn);
}

.action-item:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: #fafbff;
}

.cart-count {
    background: #ef4444;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    min-width: 18px;
    height: 18px;
    text-align: center;
    line-height: 14px;
    border-radius: var(--border-radius-btn);
}

.icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.icon-lg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.mobile-toggle {
    display: none;
    background: none;
    border: 0;
    color: #4a5568;
    cursor: pointer;
    width: 48px;
    height: 48px;
    justify-self: end;
}

.mobile-toggle:hover {
    color: var(--blue);
}

.mobile-nav {
    display: none;
    background: white;
    border-top: 1px solid #e2e8f0;
    padding: 24px;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid #f7fafc;
    padding: 12px 0;
}

.mobile-nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav-list a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.mobile-nav-list a:hover {
    color: var(--blue);
}

.modal-content {
    border: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 24px;
}

.modal-title {
    color: #1a202c;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
}

.modal-body {
    padding: 24px;
}

.search-form .form-control {
    border: 2px solid #e2e8f0;
    padding: 12px 16px;
    font-size: 16px;
    height: 56px;
}

.search-form .form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.search-submit {
    background: var(--blue);
    border: none;
    color: white;
    padding: 12px 20px;
    font-weight: 600;
}

.search-tags {
    margin-top: 20px;
}

.search-tag {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 0 12px;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 6px;
    cursor: pointer;
    display: inline-block;
    border-radius: 10px;
    line-height: 1;
    height: 40px;
    line-height: 36px;
}

.search-tag:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.login-form .form-control {
    border: 1px solid #d1d5db;
    padding: 12px 16px;
}

.login-form .form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.btn-primary {
    background-color: var(--blue);
    border: none;
    padding: 10px 24px;
    font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active {
    background-color: var(--dark-blue) !important;
}

.empty-cart {
    text-align: center;
    padding: 48px 24px;
    color: #6b7280;
}

.empty-cart .icon {
    width: 48px;
    height: 48px;
    color: #d1d5db;
    margin-bottom: 16px;
}

@media (max-width: 1400px) {
    .actions-area {
        gap: 10px;
    }
}

@media (max-width: 991px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 16px;
    }

    .nav-area {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .currency-group {
        display: none;
    }
}

@media (max-width: 767px) {
    .header-inner {
        gap: 0;
        padding: 0;
        min-height: 60px;
    }

    .actions-area {
        gap: 12px;
        display: none;
    }

    .action-item span {
        display: none;
    }

    .action-item {
        padding: 8px 12px;
    }
    .stats-block {
        display: none;
    }
}

.modal-open {
    overflow: auto !important;
    padding-right: 0 !important;
}

#cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 9999;
    opacity: 0.95;
    color: #ecf0f1;
    background: #343a40;
}

#cookie div {
    font-size: 16px;
    color: #FFFFFF;
}
.product-thumb {
    border-radius: 4px;
}
.product-thumb .product-info {
    padding: 15px;
}
div.required .col-form-label:before, div.required .form-label:before {
  content: "* ";
  color: #F00;
  font-weight: bold;
}


/* Material*/



        .material-card {
            background: var(--surface);
            border-radius: var(--border-radius);
            /*box-shadow: 0 2px 4px rgba(0,0,0,0.12), 0 0 2px rgba(0,0,0,0.08);*/
            border: none;
            overflow: hidden;
        }
        
        /*.material-card-elevated {
            box-shadow: 0 4px 8px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.08);
        }*/
        
        .btn-material {
            border-radius: var(--bs-form-border-radius);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 12px 24px;
            /*box-shadow: 0 2px 4px rgba(0,0,0,0.2);*/
            border: none;
        }
        
        .btn-material-primary {
            background-color: var(--blue);
            color: white;
        }
        
        .btn-material-primary:hover {
            background-color: var(--dark-blue);
            /*box-shadow: 0 4px 8px rgba(0,0,0,0.24);*/
        }
        
        .btn-material-outlined {
            background-color: transparent;
            color: var(--blue);
            border: 1px solid var(--blue);
            box-shadow: none;
        }
        
        .btn-material-outlined:hover {
            background-color: rgba(24, 138, 255, 0.04);
        }
        
        .product-image {
            background: var(--light-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue);
            font-size: 1.5rem;
            font-weight: 500;
            /*border-radius: 10px;*/
        }
        
        .screenshot-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            margin-top: 16px;
        }
        
        .screenshot-item {
            background-color: #f5f5f5;
            border-radius: 4px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--on-surface-variant);
            font-size: 0.875rem;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .screenshot-item:hover {
            background-color: #eeeeee;
        }
        
        .chip {
            background-color: var(--blue);
            color: white;
            padding: 6px 12px;
            border-radius: var(--border-radius-btn);
            font-size: 0.875rem;
            font-weight: 500;
            display: inline-block;
        }
        
        .price-section {
            display: flex;
            align-items: baseline;
            gap: 12px;
            margin: 16px 0;
        }
        
        .price-current {
            font-size: 2.5rem;
            font-weight: 400;
            color: var(--blue);
        }
        
        .price-old {
            font-size: 1.125rem;
            color: var(--on-surface-variant);
            text-decoration: line-through;
        }
        
        .discount-chip {
            background-color: #4caf50;
            color: white;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 500;
        }
        
        .rating-section {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 12px 0;
        }
        
        .rating-value {
            color: #ff9800;
            font-weight: 500;
        }

        .spec-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #f5f5f5;
        }
        
        .spec-row:last-child {
            border-bottom: none;
        }
        
        .spec-label {
            color: var(--on-surface-variant);
            font-weight: 500;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 16px;
            margin: 32px 0;
        }
        
        .feature-card {
            background: var(--surface);
            border-radius: 8px;
            padding: 24px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
        }
        
        .feature-icon {
            width: 48px;
            height: 48px;
            background-color: var(--blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 16px;
        }
        
        .feature-title {
            font-size: 1.125rem;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--on-surface);
        }
        
        .feature-description {
            color: var(--on-surface-variant);
            line-height: 1.5;
        }
        
        .material-tabs {
            background: var(--surface);
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.12);
            overflow: hidden;
        }
        
        .nav-tabs {
            border: none;
            background: transparent;
        }
        
        .nav-tabs .nav-link {
            border: none;
            color: var(--on-surface-variant);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 16px 24px;
            background: transparent;
        }
        
        .nav-tabs .nav-link.active {
            color: var(--blue);
            background: transparent;
            border-bottom: 2px solid var(--blue);
        }
        
        .tab-content {
            padding: 24px;
        }
        
        .breadcrumb {
            background: transparent;
            padding: 16px 0;
            margin-bottom: 24px;
        }
        
        .breadcrumb-item a {
            color: var(--on-surface-variant);
            text-decoration: none;
        }
        
        .breadcrumb-item a:hover {
            color: var(--blue);
        }
        
        .review-card {
            background: var(--surface);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 12px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.12);
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 12px;
        }
        
        .reviewer-name {
            font-weight: 500;
            color: var(--on-surface);
        }
        
        .review-date {
            color: var(--on-surface-variant);
            font-size: 0.875rem;
        }
        
        .review-rating {
            color: #ff9800;
            margin: 4px 0;
        }
        
        .review-text {
            color: var(--on-surface-variant);
            line-height: 1.5;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin: 24px 0;
        }
        
        .stat-card {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 16px;
            text-align: center;
        }
        
        .stat-number {
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--blue);
            display: block;
        }
        
        .stat-label {
            font-size: 0.875rem;
            color: var(--on-surface-variant);
            margin-top: 4px;
        }



.show-more-placeholder {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--bs-border-radius);
}

.show-more-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.show-more-placeholder:hover .show-more-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.show-more-text {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.show-more-count {
  font-size: 1.125rem;
  font-weight: 700;
}

.hidden-image {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

#checkout-payment-method table td {
    border: 0;
}

.fs-13 {
    font-size: 13px;
}



.about-section {
    padding: 50px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: center;
}

.about-text {
    padding-right: 40px;
}

.about-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    color: #000;
}

.about-subtitle {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.4;
    font-weight: 400;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.stats-block {
    background: var(--light-blue);
    padding: 60px 50px;
    border-radius: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.stat-item {
    padding: 20px 0;
    transition: transform 0.3s ease;
    animation: slideIn 0.8s ease 0.3s;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    color: #393939;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--on-surface);
}

.services-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 0;
    margin-bottom: 120px;
    border-radius: 16px;
    overflow: hidden;
}

.services-header {
    background: var(--light-blue);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
    line-height: 1.1;
}

.services-intro {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

.services-list {
    background: white;
    padding: 10px 60px;
}

.service-item {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.service-item:last-child {
    border-bottom: none;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.service-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin-bottom: 120px;
    border-radius: 16px;
    overflow: hidden;
}

.mission-block {
    padding: 80px 50px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-dark {
    background: var(--bs-secondary);
    color: white;
}

.mission-light {
    background: #ffffff;
    color: #000;
}

.mission-accent {
    background: var(--blue);
    color: white;
}

.mission-number {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0.7;
}

.mission-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.mission-text {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.end-section {
    background: var(--bs-secondary);
    color: white;
    padding: 100px 60px;
    text-align: center;
    border-radius: 16px;
}

.end-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.end-text {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.end-button {
    display: inline-block;
    background: var(--light-blue);
    color: var(--bs-secondary);
    padding: 20px 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--light-blue);
    transition: all 0.3s ease;
    border-radius: var(--border-radius-btn);
}

.end-button:hover {
    background: transparent;
    color: var(--light-blue);
}

@media (max-width: 1200px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .about-text {
        padding-right: 0;
    }

    .about-title {
        font-size: 3.5rem;
    }

    .services-section {
        grid-template-columns: 1fr;
    }

    .mission-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.8rem;
    }

    .services-header,
    .services-list,
    .mission-block {
        padding: 50px 30px;
    }

    .end-section {
        padding: 60px 30px;
    }

    .end-title {
        font-size: 2.2rem;
    }
}

.logout-item {
    background: #f1f1f1;
    color: darkred;
}



        .hd-section {
            margin-bottom: 120px;
        }

        .hd-title {
            font-size: 1.8rem;
            font-weight: 600;
        }

        .hd-body {
            padding: 3rem;
        }

        .hd-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 4rem;
        }

        .hd-content {
            font-size: 1rem;
            line-height: 1.7;
        }

        .hd-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .opencart-info {
            background: var(--light-blue);
            padding: 2rem;
            margin: 2rem 0;
            border-radius: 10px;
        }

        .opencart-info p {
            margin-bottom: 0;
            font-weight: 500;
        }

        .hd-sidebar {
            background: var(--gray);
            padding: 2rem;
            height: fit-content;
            border-radius: 10px;
        }

        .hd-sidebar-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #2c3e50;
            border-bottom: 2px solid var(--blue);
            padding-bottom: 0.5rem;
        }

        .hd-list {
            list-style: none;
            padding-left: 0;
        }

        .hd-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid #ddd;
            position: relative;
        }

        .hd-list li:last-child {
            border-bottom: none;
        }


#button-cart {
    height: 64px;
    padding: 12px 48px;
    border-radius: var(--bs-form-border-radius);
}
.divider {
    border-color: #c1c1c1;
}
#checkout-payment button,
#button-confirm {
    margin-top: 15px;
}
.h-44 {
    height: 44px;
    line-height: 44px;
    padding-top: 0;
    padding-bottom: 0;
}
.h-48 {
    height: 48px;
    line-height: 48px;
    padding-top: 0;
    padding-bottom: 0;
}
#btn-login-checkout:hover {
    background: var(--light-blue);
}
#product-list .product-image {
    min-width: 350px;
    max-width: 350px;
}
.fly-to-cart {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fly-to-cart.animate {
    opacity: 0;
    transform: scale(0.3);
}

.cart-highlight {
    animation: cartPulse 0.6s ease-in-out;
}
.icon-pay {
    width: 50px;
    height: 50px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1;
}
.short-description {
    padding-left: 25px;
    border-left: 4px solid #ccc;
}
.full-description {
    margin-top: 40px;
}

@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.product-text {
	margin-bottom: 16px;
}

.extensions .product-text{
	min-height: 110px;
}


@media (max-width: 1399px) {
	.product-description {
		height: 42px;
		overflow: hidden;
	}
}

@media (max-width: 1199px) {
    .currency-option {
        padding: 4px 16px;
    }
    .about-title {
        font-size: 3rem;
    }
    #product-list .product-image {
        min-width: 375px;
        max-width: 375px;
    }
}
@media (max-width: 991px) {
    #product-list .product-image {
        min-width: none;
        max-width: none;
    }
}
@media (max-width: 767px) {
    .about-title {
        font-size: 2rem;
    }
    .about-subtitle {
        font-size: 1.2rem;
    }
    .hd-layout {
        display: block;
    }
	#product-list .product-image {
		min-width: auto;
	}
	.image.magnific-popup {
		margin-bottom: 30px;
	}
	#alert {
		margin-left:15px;
		margin-right:15px;
		left: 0;
		width: auto;
	}
}

