* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Verification Modal Styles */
.verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.verification-modal-content {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    margin: 20px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.verification-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.verification-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #30486d;
    margin-bottom: 15px;
}

.protected-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f70f4d, #e55a8a);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    gap: 8px;
}

.protected-badge i {
    font-size: 16px;
}

.payment-methods {
    margin-bottom: 30px;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-logos img {
    height: 35px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-logos img:hover {
    opacity: 1;
}

.verification-status {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 35px;
    border-left: 4px solid #f70f4d;
}

.status-banner {
    background: linear-gradient(135deg, #f70f4d, #e55a8a);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
}

.status-message {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.status-message i {
    color: #f70f4d;
    font-size: 24px;
    margin-top: 2px;
}

.message-content p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
}

.learn-more {
    color: #f70f4d;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.learn-more:hover {
    text-decoration: underline;
}

.agreement-section {
    margin-bottom: 40px;
}

.agreement-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.6;
}

.agreement-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.agreement-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #f70f4d;
    border-color: #f70f4d;
}

.agreement-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.agreement-checkbox a {
    color: #f70f4d;
    text-decoration: none;
}

.agreement-checkbox a:hover {
    text-decoration: underline;
}

.verification-btn {
    width: 100%;
    background: #30486d;
    color: white;
    border: none;
    padding: 20px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.verification-btn:hover {
    background: #FF1952;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.verification-btn i {
    font-size: 14px;
}

.verification-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.verification-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
.verification-header h2 {
    font-size: 24px;
}

.payment-logos {
    gap: 15px;
}

.payment-logos img {
    height: 25px;
}

.status-message {
    flex-direction: column;
    gap: 10px;
}

.status-message i {
    align-self: flex-start;
}

body {
    font-family: PublicSans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    background-color: white;
    color: #333;
    line-height: 1.6;
}

/* Header */
.header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ebebeb;
}

.navbar {
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

/* Standalone Logo */
.logo-standalone {
    position: absolute;
    left: 50px;
    top: 22px;
    z-index: 1001;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.logo-standalone svg {
    height: 32px;
    width: auto;
}



/* Central Navigation */
.nav-center {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-btn {
    background: none;
    border: none;
    font-size: 23px;
    font-weight: 600;
    color: #30486d;
    cursor: pointer;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.dropdown-btn:hover {
    color: #FF1952;
}

.dropdown-btn i {
    font-size: 20px;
    transition: transform 0.3s;
}

/* Commented out hover effect for icon - now controlled by JavaScript
.dropdown:hover .dropdown-btn i {
    transform: rotate(180deg);
}
*/

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 600px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Commented out hover effect - now controlled by JavaScript
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
*/

.dropdown-mega {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.dropdown-section h4 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-section a {
    display: block;
    color: #666;
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
    transition: color 0.3s;
}

.dropdown-section a:hover {
    color: #FF1952;
}

/* Search Container */
.search-container {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 50px 12px 16px;
    border: 1px solid #C0C0C0;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: #FF1952;
}

.search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #C0C0C0;
    cursor: pointer;
    transition: background-color 0.3s;
}



.search-btn i {
    font-size: 14px;
}

/* Categories Bar */
.categories-bar {
    padding: 12px 0;
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 0 20px;
}

.category-link {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
}

.category-link:hover {
    background: #FF1952;
    color: white;
}

/* Responsive Header */
@media (max-width: 1024px) {
    .nav-center {
        gap: 20px;
    }
    
    .search-container {
        max-width: 300px;
    }
    
    .dropdown-content {
        min-width: 500px;
    }
    
    .dropdown-mega {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .categories-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        position: relative;
    }
    .logo-standalone svg{
        height: 20px;
        width: auto;
    }
    .dropdown-btn {
        margin-left: 70px;
    }
    
    /* Burger menu button */
    .burger-menu {
        display: block !important;
        position: absolute;
        right: 20px;
        top: 0px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1002;
    }
    
    .burger-menu span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #30486d;
        margin: 4px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .nav-center {
        order: 2;
        justify-content: flex-start;
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }
    
    .dropdown {
        align-self: flex-start;
    }
    
    .search-container {
        order: 3;
        max-width: none;
        width: 100%;
    }
    
    .nav-actions {
        display: none !important;
    }
    
    .categories-bar {
        display: none;
    }
    
    .product-actions-bottom {
        display: none !important;
    }
    
    .dropdown-content {
        min-width: 100%;
        left: 0;
        transform: none;
        border-radius: 0;
    }
    
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }
    
    .dropdown-mega {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .categories-container {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .category-link {
        padding: 6px 12px;
        font-size: 14px;
    }
    .logo-standalone {
        padding-left: 15px;
        left: 20px !important;
    }
    
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    

    .nav-actions {
        right: 15px;
    }
    
    .nav-center {
        flex-direction: column;
        gap: 15px;
    }
    
    .dropdown-mega {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .categories-container {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 15px;
        padding-bottom: 5px;
    }
    
    .category-link {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .logo svg {
        height: 28px;
    }
    
    .search-input {
        padding: 10px 45px 10px 14px;
        font-size: 14px;
    }
    
    .search-btn {
        width: 32px;
        height: 32px;
    }
}

/* Bootstrap-like responsive utility classes */
.d-none {
    display: none !important;
}

.d-md-none {
    display: block !important;
}

.d-md-inline {
    display: none !important;
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
    
    .d-md-inline {
        display: inline !important;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #f70f4d;
}

/* Burger menu - hidden on desktop */
.burger-menu {
    display: none;
}

/* Navigation Actions */
.nav-actions {
    position: absolute;
    right: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #f70f4d;
    color: white;
}

.btn-primary:hover {
    background: #e55a8a;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #f70f4d;
    background: transparent;
    color: #f70f4d;
}

.btn-outline:hover {
    background: #f70f4d;
    color: white;
}

.btn-pink {
    background: #f70f4d;
    color: white;
}

.btn-pink:hover {
    background: #e55a8a;
    transform: translateY(-2px);
}

.btn-outline-pink {
    border: 2px solid #f70f4d;
    background: transparent;
    color: #f70f4d;
}

.btn-outline-pink:hover {
    background: #f70f4d;
    color: white;
}

/* Breadcrumb */
.breadcrumb {
    background: white;
    padding: 15px 0;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-list {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.breadcrumb-list a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-list a:hover {
    color: #f70f4d;
}

/* Main Content */
.main-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Product Images */
.product-images {
    position: relative;
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(59, 130, 246, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-image {
    width: 100%;
    height: 500px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
}

.product-actions-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
}

.product-actions-bottom button {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    transition: color 0.3s;
}

.product-actions-bottom button i {
    font-size: 24px;
    color: #f70f4d;
}

.product-actions-bottom button:hover {
    color: #6b7280;
}

.product-actions-bottom button:hover i {
    color: #e55a8a;
}

.likes-text {
    color: #6b7280;
    font-size: 18px;
}

/* Product Info */
.product-info {
    height: fit-content;
}

.upload-time {
    color: #666;
    font-size: 14px;

}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.brand-info {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

.price {
    font-size: 36px;
    font-weight: bold;
    color: #f70f4d;
    margin-bottom: 20px;
}

.kueski-banner {
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 11px;
}

.question-section {
    background: #fef7f7;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.question-icon {
    color: #ef4444;
    font-size: 20px;
}

.question-text {
    color: #30486d;
    flex: 1;
}

.expandable-section {
    border-bottom: 1px solid #808080;
    margin-bottom: 15px;
    overflow: hidden;
}

.section-header {
    border-bottom: 1px solid #808080;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    cursor: pointer;
    transition: background 0.3s;
}



.section-header span {
    flex: 1;
    font-weight: 500;
}

.toggle-icon {
    color: #6b7280;
    transition: transform 0.3s;
}

.section-content {
    padding: 0 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.section-content.expanded {
    padding: 15px;
    max-height: 500px;
}

.section-content.collapsed {
    max-height: 0;
    padding: 0 15px;
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row i {
    color: #6b7280;
    width: 16px;
}

.detail-row > div {
    display: flex;
    flex-direction: column;
}

.ask-seller-section {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.ask-seller-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.ask-seller-container-desktop {
    /* background: white; */
    border-radius: 15px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    margin-top: 20px;
    display: none;
}

/* Desktop: показываем ask-seller в product-images, скрываем отдельный */
@media (min-width: 768px) {
    .ask-seller-container-desktop {
        display: block;
    }
    
    .ask-seller-section {
        display: none;
    }
}

/* Mobile: скрываем ask-seller в product-images, показываем отдельный */
@media (max-width: 767px) {
    .ask-seller-container-desktop {
        display: none;
    }
    
    .ask-seller-section {
        display: block;
    }
}

.ask-seller-header {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    border-top: 1px solid #e5e7eb;
    FONT-SIZE: 20px;
}

.ask-seller-content {
    padding: 20px;
}
.sm {
    background-color: white;
    color: #f70f4d;
    font-weight: 600;
    padding: 0 0;
}
.ask-seller-content p {
    margin-bottom: 15px;
    color: #374151;
    font-size: 18px;
}

.ask-seller-input {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 12px;
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.ask-seller-input textarea {
    background-color: #fafafa;
    flex: 1;
    padding: 12px;
    border: 1px solid #fafafa;
    border-radius: 8px;
    resize: vertical;
    height: 80px;
    font-family: inherit;
    font-size: 17px;
}

.ask-seller-input textarea:focus {
    outline: none;
}

.shipping-info {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    /* text-align: center; */
    color: #30486d;
    font-weight: 500;
}

.actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-large {
    flex: 1;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
}

.product-details {
    margin-bottom: 30px;
}

.details-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-size: 14px;
    color: #666;
}

.detail-value {
    font-weight: 500;
    color: #333;
    font-size: 18px;
}

.protection-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.protection-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.protection-features {
    list-style: none;
    margin-top: 15px;
}

.protection-features li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}

.accordion-body {
    padding: 15px 0;
    font-size: 18px !important;
}

.body-size-sm {
    font-size: 14px;
    line-height: 1.6;
}

.text-grey-800 {
    color: #374151;
}

.gr {
    background-color: #fafafa;
}

/* Seller Info */
.seller-section {
    background: white;
    padding: 25px;
    margin-top: 30px;
    border-top: 1px solid #C0C0C0;
}

.seller-section-desktop {
    /* background: white; */
    /* border-radius: 15px; */
    padding: 25px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    margin-top: 30px;
    display: none;
    border-top: 1px solid #C0C0C0;
}

/* Desktop: показываем seller в product-info, скрываем отдельный */
@media (min-width: 768px) {
    .seller-section-desktop {
        display: block;
    }
    
    .seller-section {
        display: none;
    }
}

/* Mobile: скрываем seller в product-info, показываем отдельный */
@media (max-width: 767px) {
    .seller-section-desktop {
        display: none;
    }
    
    .seller-section {
        display: block;
    }
}

.seller-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.seller-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f70f4d, #e55a8a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.seller-info h3 {
    margin-bottom: 5px;
    color: #333;
}

.seller-rating {
    color: #ffa726;
}

.seller-stats {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 6px 0;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item i {
    color: #6b7280;
    width: 32px;
    font-size: 26px;
}

.stat-item:first-child i {
    font-size: 30px;
}

.stat-item > div {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 16px;
    color: #6b7280;
}

.stat-value {
    font-weight: 500;
    color: #374151;
    font-size: 18px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.offer-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 18px;
    margin: 15px 0;
    text-align: center;
}

.offer-input:focus {
    outline: none;
    border-color: #f70f4d;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Heart animation */
.heart-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.heart-btn.liked {
    color: #f70f4d;
    transform: scale(1.2);
}

.heart-btn:hover {
    transform: scale(1.1);
}

/* Additional animations */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Hover effects */
.product-images:hover .main-image {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .main-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px auto;
    }

    .nav-menu {
        display: none;
    }

    .actions {
        flex-direction: column;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .seller-stats {
        grid-template-columns: 1fr;
    }

    .nav-container {
        flex-wrap: wrap;
    }
    
    .nav-actions {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
    
    .main-image {
        height: 400px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .price {
        font-size: 28px;
    }
}

/* Footer */
footer {
    background-color: #e9ecef;
    margin-top: 50px;
    padding: 40px 0;
}

footer .container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    padding: 8px 0;
}

footer ul li a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: #ff6b9d;
}

footer strong {
    color: #333;
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    color: #6b7280;
    font-size: 20px;
    transition: color 0.3s;
    display: inline-block;
}

.social-links a:hover {
    color: #ff6b9d;
}

footer img {
    /* height: 30px; */
    margin-right: 15px;
    /* margin-bottom: 15px; */
    object-fit: contain;
}

.payment-methods-icons img {
    height: 25px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.recomended-by-icons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.recomended-by-icons img {
    height: 25px;
    margin-right: 15px;
    margin-bottom: 15px;
    object-fit: contain;
}

.payment-methods-icons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.payment-methods-icons .d-flex {
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

footer p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

/* Bootstrap-like classes for footer */
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col,
.col-12,
.col-md-6,
.col-lg-5 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.offset-lg-1 {
    margin-left: 8.333333%;
}

.pt-4 {
    padding-top: 1.5rem;
}

.pt-md-5 {
    padding-top: 3rem;
}

.pb-5 {
    padding-bottom: 3rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mr-4 {
    margin-right: 1.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.d-inline-block {
    display: inline-block;
}

.d-none {
    display: none;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.align-items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .mb-md-2 {
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 992px) {
    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    
    .d-lg-block {
        display: block;
    }
    
    footer .row.pb-5 {
        justify-content: center;
        align-items: flex-start;
    }
    
    footer .offset-lg-1 {
        margin-left: 0;
    }
}